rank | frequency | n-gram |
---|---|---|
1 | 6457 | -s |
2 | 4444 | -e |
3 | 3114 | -n |
4 | 2910 | -d |
5 | 2540 | -t |
rank | frequency | n-gram |
---|---|---|
1 | 1840 | -ed |
2 | 1827 | -ng |
3 | 1394 | -on |
4 | 1354 | -er |
5 | 1335 | -es |
rank | frequency | n-gram |
---|---|---|
1 | 1707 | -ing |
2 | 798 | -ion |
3 | 500 | -ers |
4 | 445 | -ent |
5 | 430 | -ted |
rank | frequency | n-gram |
---|---|---|
1 | 620 | -tion |
2 | 330 | -ting |
3 | 257 | -ions |
4 | 236 | -ment |
5 | 158 | -ring |
rank | frequency | n-gram |
---|---|---|
1 | 381 | -ation |
2 | 209 | -tions |
3 | 99 | -ction |
4 | 89 | -ating |
5 | 83 | - with |
The tables show the most frequent letter-N-grams at the ending of words for N=1…5. Everything runs in parallel to 2.2.5 Most frequent word beginnings. The aim is suffix detection instead of affix detection.
For N=3:
SELECT @pos:=(@pos+1), xx.* from (SELECT @pos:=0) r, (select count(*) as cnt ,concat("-", right(word,3)) FROM words WHERE w_id>100 group by right(word,3) order by cnt desc) xx limit 5;
2.2.5 Most frequent word beginnings